projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d236c30
)
* src/sheap.c (STATIC_HEAP_SIZE) [__x86_64__]: Increase to 18MB.
author
Ken Brown
<kbrown@cornell.edu>
Tue, 9 Jul 2013 13:56:47 +0000
(09:56 -0400)
committer
Ken Brown
<kbrown@cornell.edu>
Tue, 9 Jul 2013 13:56:47 +0000
(09:56 -0400)
src/ChangeLog
patch
|
blob
|
history
src/sheap.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index 024be050b3e0cf443bc7dc753296a900e2240454..a96f1153ef017eb7a02c59ebfa771f7792ccc2a6 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,3
+1,7
@@
+2013-07-09 Ken Brown <kbrown@cornell.edu>
+
+ * sheap.c (STATIC_HEAP_SIZE) [__x86_64__]: Increase to 18MB.
+
2013-07-09 Juanma Barranquero <lekktu@gmail.com>
* makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/sysdep.$(O)): Update.
diff --git
a/src/sheap.c
b/src/sheap.c
index f8eec7532689f944a708049fb76e3b64b9aa66d3..54eef60c27df554b2afd23faeb05aa50a55df595 100644
(file)
--- a/
src/sheap.c
+++ b/
src/sheap.c
@@
-25,7
+25,11
@@
along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#include <unistd.h>
+#ifdef __x86_64__
+#define STATIC_HEAP_SIZE (18 * 1024 * 1024)
+#else
#define STATIC_HEAP_SIZE (13 * 1024 * 1024)
+#endif
int debug_sheap = 0;